home *** CD-ROM | disk | FTP | other *** search
-
- /***************************************************************/
-
- /* Creado por Javier Trujillo Horcas el 22 de Julio de 1992 */
-
-
- /* Este archivo cabecera contiene los códigos que se obtienen al pulsar */
- /* una tecla de control o las combinaciones de una de las letras del */
- /* alfabeto estandar, con las teclas CONTROL o ALT. Los nombres que se */
- /* utilizan para definir las teclas son los del teclado español. El uso */
- /* común es para una variable INT y se representan en Hexadecimal. */
-
-
-
-
- /****************************************************************/
- /*********************** Teclas de control ********************/
- /****************************************************************/
-
- #define ESCAPE 0x011b
- #define F1 0x3b00
- #define F2 0x3c00
- #define F3 0x3d00
- #define F4 0x3e00
- #define F5 0x3f00
- #define F6 0x4000
- #define F7 0x4100
- #define F8 0x4200
- #define F9 0x4300
- #define F10 0x4400
- #define INSERTAR 0x5200
- #define SUPRIMIR 0x5300
- #define INICIO 0x4700
- #define FIN 0x4f00
- #define RETROCEDER_PAGINA 0x4900
- #define AVANZAR_PAGINA 0x5100
- #define CURSOR_ARRIBA 0x4800
- #define CURSOR_DERECHA 0x4d00
- #define CURSOR_ABAJO 0x5000
- #define CURSOR_IZQUIERDA 0x4b00
- #define ESPACIO 0x3920
- #define INTRO 0x1c0d
- #define RETROCEDER 0x0e08
- #define TABULADO 0x0f09
-
-
-
- /****************************************************************/
- /**************** Combinaciones de ALT+Alfabeto *****************/
- /****************************************************************/
-
- #define ALT_A 0x1e00
- #define ALT_B 0x3000
- #define ALT_C 0x2e00
- #define ALT_D 0x2000
- #define ALT_E 0x1200
- #define ALT_F 0x2100
- #define ALT_G 0x2200
- #define ALT_H 0x2300
- #define ALT_I 0x1700
- #define ALT_J 0x2400
- #define ALT_K 0x2500
- #define ALT_L 0x2600
- #define ALT_M 0x3200
- #define ALT_N 0x3100
- #define ALT_O 0x1800
- #define ALT_P 0x1900
- #define ALT_Q 0x1000
- #define ALT_R 0x1300
- #define ALT_S 0x1f00
- #define ALT_T 0x1400
- #define ALT_U 0x1600
- #define ALT_V 0x2f00
- #define ALT_W 0x1100
- #define ALT_X 0x2d00
- #define ALT_Y 0x1500
- #define ALT_Z 0x2c00
- #define ALT_ESPACIO 0x05ff
-
-
- /****************************************************************/
- /************** Combinaciones de CONTROL+Alfabeto ***************/
- /****************************************************************/
-
- #define CTRL_A 0x1e01
- #define CTRL_B 0x3002
- #define CTRL_C 0x2e03
- #define CTRL_D 0x2004
- #define CTRL_E 0x1205
- #define CTRL_F 0x2106
- #define CTRL_G 0x2207
- #define CTRL_H 0x2308
- #define CTRL_I 0x1709
- #define CTRL_J 0x240a
- #define CTRL_K 0x250b
- #define CTRL_L 0x260c
- #define CTRL_M 0x320d
- #define CTRL_N 0x310e
- #define CTRL_O 0x180f
- #define CTRL_P 0x1910
- #define CTRL_Q 0x1011
- #define CTRL_R 0x1312
- #define CTRL_S 0x1f13
- #define CTRL_T 0x1414
- #define CTRL_U 0x1615
- #define CTRL_V 0x2f16
- #define CTRL_W 0x1117
- #define CTRL_X 0x2d18
- #define CTRL_Y 0x1519
- #define CTRL_Z 0x2c1a
-
-
- /******************************************************************/